Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup: Move array indexing validation out of apis package #6617

Merged
merged 1 commit into from
May 31, 2023

Conversation

lbernick
Copy link
Member

@lbernick lbernick commented May 3, 2023

We validate that indexing references to array parameters are in bounds,
based on the default values of the parameters and the parameter values
passed in from a PipelineRun/TaskRun. This validation happens in the reconciler,
since it requires comparing the Task/Pipeline spec with the parameters
defined in the TaskRun/PipelineRun.

Prior to this commit, validation code was in the apis package, even though it was called
in the reconciler. This is confusing, because this code cannot be used to validate a Task/Pipeline
spec in isolation; it can only be used in the context of TaskRuns and PipelineRuns.
This commit moves this validation logic to the reconciler and does not introduce any functional changes.

Related: #6607

/kind cleanup

Submitter Checklist

As the author of this PR, please check off the items in this checklist:

  • n/a Has Docs if any changes are user facing, including updates to minimum requirements e.g. Kubernetes version bumps
  • Has Tests included if any functionality added or changed
  • Follows the commit message standard
  • Meets the Tekton contributor standards (including functionality, content, code)
  • Has a kind label. You can add one by adding a comment on this PR that contains /kind <type>. Valid types are bug, cleanup, design, documentation, feature, flake, misc, question, tep
  • n/a Release notes block below has been updated with any user facing changes (API changes, bug fixes, changes requiring upgrade notices or deprecation warnings). See some examples of good release notes.
  • n/a Release notes contains the string "action required" if the change requires additional action from users switching to the new release

Release Notes

NONE

@tekton-robot tekton-robot added kind/bug Categorizes issue or PR as related to a bug. release-note Denotes a PR that will be considered when it comes time to generate release notes. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. labels May 3, 2023
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 93.1% -6.0
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 89.0% -10.0
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/pipelinerun/resources/validate_params.go 100.0% 88.5% -11.5
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 65.2%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 93.1% -6.0
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 89.0% -10.0
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/pipelinerun/resources/validate_params.go 100.0% 88.5% -11.5
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 65.2%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 93.1% -6.0
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 89.0% -10.0
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/pipelinerun/resources/validate_params.go 100.0% 88.5% -11.5
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 65.2%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 98.4% -0.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 93.8% -5.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 98.4% -0.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 93.8% -5.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

Copy link
Member

@Yongxuanzhang Yongxuanzhang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! This is a huge improvement!
I wonder should we remove these checks as well?

if config.CheckAlphaOrBetaAPIFields(ctx) {
for i := 0; i < len(p.Default.ArrayVal); i++ {
stringReplacements[fmt.Sprintf(pattern+"[%d]", p.Name, i)] = p.Default.ArrayVal[i]
}

if config.CheckAlphaOrBetaAPIFields(ctx) {
for i := 0; i < len(p.Value.ArrayVal); i++ {
stringReplacements[fmt.Sprintf(pattern+"[%d]", p.Name, i)] = p.Value.ArrayVal[i]
}

if config.CheckAlphaOrBetaAPIFields(ctx) {
for i := 0; i < len(p.Default.ArrayVal); i++ {
stringReplacements[fmt.Sprintf(pattern+"[%d]", p.Name, i)] = p.Default.ArrayVal[i]
}

if config.CheckAlphaOrBetaAPIFields(ctx) {
for i := 0; i < len(p.Value.ArrayVal); i++ {
stringReplacements[fmt.Sprintf(pattern+"[%d]", p.Name, i)] = p.Value.ArrayVal[i]
}

pkg/reconciler/taskrun/resources/taskref.go Outdated Show resolved Hide resolved
pkg/reconciler/pipelinerun/resources/validate_params.go Outdated Show resolved Hide resolved
@lbernick
Copy link
Member Author

lbernick commented May 3, 2023

Thanks @Yongxuanzhang I've removed the additional reconciler checks you linked.

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 98.4% -0.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 93.8% -5.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.1% -0.0
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/taskrun/resources/apply.go 99.2% 99.2% -0.0
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 98.4% -0.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 93.8% -5.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.1% -0.0
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/taskrun/resources/apply.go 99.2% 99.2% -0.0
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

@lbernick
Copy link
Member Author

lbernick commented May 4, 2023

@tektoncd/core-maintainers please take a look, this is one of our remaining v1 blockers

Copy link
Member

@Yongxuanzhang Yongxuanzhang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good to me! Just have some minor comments/questions.
Let me know when we need a lgtm

pkg/apis/pipeline/v1beta1/param_types.go Outdated Show resolved Hide resolved
pkg/apis/pipeline/v1beta1/task_validation_test.go Outdated Show resolved Hide resolved
pkg/reconciler/taskrun/resources/taskref.go Outdated Show resolved Hide resolved
@lbernick
Copy link
Member Author

lbernick commented May 5, 2023

@Yongxuanzhang done, thanks!

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 98.4% -0.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 93.8% -5.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.1% -0.0
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/taskrun/resources/apply.go 99.2% 99.2% -0.0
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 99.1% 98.4% -0.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.4% 99.7% 0.3
pkg/apis/pipeline/v1/task_validation.go 96.9% 97.4% 0.5
pkg/apis/pipeline/v1beta1/param_types.go 99.1% 93.8% -5.3
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.1% 98.7% -0.3
pkg/apis/pipeline/v1beta1/task_validation.go 97.0% 97.3% 0.3
pkg/reconciler/pipelinerun/resources/apply.go 98.1% 98.1% -0.0
pkg/reconciler/pipelinerun/resources/pipelineref.go 93.1% 91.8% -1.3
pkg/reconciler/taskrun/resources/apply.go 99.2% 99.2% -0.0
pkg/reconciler/taskrun/resources/taskref.go 89.7% 88.9% -0.9
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

Copy link
Member

@Yongxuanzhang Yongxuanzhang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label May 5, 2023
@jerop jerop self-assigned this May 8, 2023
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 94.1% -4.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.7% -0.0
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.2% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 94.0% -4.7
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.2% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.8%

Copy link
Member

@Yongxuanzhang Yongxuanzhang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

pkg/reconciler/taskrun/resources/validate_params.go Outdated Show resolved Hide resolved
@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label May 19, 2023
@tekton-robot tekton-robot removed the lgtm Indicates that a PR is ready to be merged. label May 22, 2023
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 94.1% -4.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.7% -0.0
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.2% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 94.0% -4.7
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.2% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 94.1% -4.7
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.7% -0.0
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.2% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 94.0% -4.7
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.2% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.7% -0.0
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.3% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.1% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.7% -0.0
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.3% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.1% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@tekton-robot tekton-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 31, 2023
We validate that indexing references to array parameters are in bounds,
based on the default values of the parameters and the parameter values
passed in from a PipelineRun/TaskRun. This validation happens in the reconciler,
since it requires comparing the Task/Pipeline spec with the parameters
defined in the TaskRun/PipelineRun.

Prior to this commit, validation code was in the apis package, even though it was called
in the reconciler. This is confusing, because this code cannot be used to validate a Task/Pipeline
spec in isolation; it can only be used in the context of TaskRuns and PipelineRuns.
This commit moves this validation logic to the reconciler and does not introduce any functional changes.
@tekton-robot tekton-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 31, 2023
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.1% -0.6
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.3% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.1% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.1% -0.6
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.3% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.1% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@dibyom
Copy link
Member

dibyom commented May 31, 2023

/approve

@tekton-robot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: dibyom

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@tekton-robot tekton-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 31, 2023
@Yongxuanzhang
Copy link
Member

/lgtm

@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label May 31, 2023
@Yongxuanzhang
Copy link
Member

not sure if the requested changes will block this pr or not, but I think we have split this PR into smaller ones.
cc @jerop

@lbernick lbernick closed this May 31, 2023
@lbernick lbernick reopened this May 31, 2023
@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.1% -0.6
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.3% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.1% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@tekton-robot
Copy link
Collaborator

The following is the coverage report on the affected files.
Say /test pull-tekton-pipeline-go-coverage-df to re-run this coverage report

File Old Coverage New Coverage Delta
pkg/apis/pipeline/v1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1/pipeline_validation.go 99.7% 99.1% -0.6
pkg/apis/pipeline/v1/task_validation.go 97.3% 97.3% -0.1
pkg/apis/pipeline/v1beta1/param_types.go 98.8% 98.7% -0.1
pkg/apis/pipeline/v1beta1/pipeline_validation.go 99.4% 98.8% -0.6
pkg/apis/pipeline/v1beta1/task_validation.go 97.2% 97.1% -0.1
pkg/reconciler/taskrun/resources/validate_params.go Do not exist 93.3%

@lbernick
Copy link
Member Author

/retest

@tekton-robot tekton-robot merged commit 5d5fd5b into tektoncd:main May 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. lgtm Indicates that a PR is ready to be merged. release-note-none Denotes a PR that doesnt merit a release note. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants